跳到主要内容

Fortran 定义类型与使用类型

一个良好的习惯:在一模块中声明所有数据类型的定义,然后在过程中使用该模块。

type name
component :: var
...
end type name

然后

type(person) :: john, jane
type(person), dimension(100) :: people